home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacHack 2000
/
MacHack 2000.toast
/
pc
/
The Hacks
/
Softshoe
/
Lisa's Mac Parts
/
Files
/
Errors
/
DirectoryFullError.h
< prev
next >
Wrap
Text File
|
2000-06-23
|
299b
|
21 lines
// DirectoryFullError.h
#ifndef DirectoryFullError_h
#define DirectoryFullError_h
#ifndef FileError_h
#include "FileError.h"
#endif
class DirectoryFullError: public FileError
{
public:
DirectoryFullError( OSErr error )
: FileError( error )
{}
// Used for dirFulErr
};
#endif